home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / KnowControl / KnobTest.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  3.3 KB  |  80 lines

  1.  
  2. program KnobTest;
  3.  
  4. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  5. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  6. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  7. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  8. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  9. {%DelphiDotNetAssemblyCompiler 'Borland.Delphi.dll'}
  10. {$R 'KnobTestForm.TKnobTestForm.resources' 'KnobTestForm.resx'}
  11. {%DelphiDotNetAssemblyCompiler 'Examples.Controls.dll'}
  12.  
  13. uses
  14.   System.Reflection,
  15.   System.Runtime.CompilerServices,
  16.   System.Windows.Forms,
  17.   KnobTestForm in 'KnobTestForm.pas' {KnobTestForm.TKnobTestForm: System.Windows.Forms.Form};
  18.  
  19. //
  20. // General Information about an assembly is controlled through the following
  21. // set of attributes. Change these attribute values to modify the information
  22. // associated with an assembly.
  23. //
  24. [assembly: AssemblyTitle('')]
  25. [assembly: AssemblyDescription('')]
  26. [assembly: AssemblyConfiguration('')]
  27. [assembly: AssemblyCompany('')]
  28. [assembly: AssemblyProduct('')]
  29. [assembly: AssemblyCopyright('')]
  30. [assembly: AssemblyTrademark('')]
  31. [assembly: AssemblyCulture('')]
  32.  
  33. //
  34. // Version information for an assembly consists of the following four values:
  35. //
  36. //      Major Version
  37. //      Minor Version 
  38. //      Build Number
  39. //      Revision
  40. //
  41. // You can specify all the values or you can default the Revision and Build Numbers 
  42. // by using the '*' as shown below:
  43.  
  44. [assembly: AssemblyVersion('1.0.*')]
  45.  
  46. //
  47. // In order to sign your assembly you must specify a key to use. Refer to the 
  48. // Microsoft .NET Framework documentation for more information on assembly signing.
  49. //
  50. // Use the attributes below to control which key is used for signing. 
  51. //
  52. // Notes: 
  53. //   (*) If no key is specified, the assembly is not signed.
  54. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  55. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  56. //       a key.
  57. //   (*) If the KeyFile and the KeyName values are both specified, the 
  58. //       following processing occurs:
  59. //       (1) If the KeyName can be found in the CSP, that key is used.
  60. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  61. //           in the KeyFile is installed into the CSP and used.
  62. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  63. //       When specifying the KeyFile, the location of the KeyFile should be
  64. //       relative to the project output directory. For example, if your KeyFile is
  65. //       located in the project directory, you would specify the AssemblyKeyFile 
  66. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  67. //       directory is the project directory (the default).
  68. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  69. //       documentation for more information on this.
  70. //
  71. [assembly: AssemblyDelaySign(false)]
  72. [assembly: AssemblyKeyFile('')]
  73. [assembly: AssemblyKeyName('')]
  74.  
  75. [STAThread]
  76. begin
  77.   Application.Run(TKnobTestForm.Create);
  78. end.
  79.  
  80.